home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / jp_du11.zip / DU.DOC < prev    next >
Text File  |  1990-04-17  |  2KB  |  52 lines

  1.      Disk Recursive Usage utility
  2.      Copyright 1990 Jussi Puttonen
  3.  
  4.  Permission is granted to freely use, copy, modify, and redistribute
  5.  this software, provided that no attempt is made to gain profit from it,
  6.  the author is not construed to be liable for any results of using this
  7.  software.
  8.  
  9.     Calculates the total size and count of the files
  10.     in the given directory and it's subdirectories.
  11.  
  12. Use: du [-t] [-d#] [-a] [dirspec] ...
  13.      du -h
  14.  
  15.     Uses current directory at default. If more than
  16.     one directory is given, counts also grand total.
  17.  
  18.     Options:
  19.     -t     Technical output (Numbers are displayed like 999999 instead
  20.            of the default 999,999) Useful when the output from du is
  21.            consumed by another program.
  22.     -d#    Stops reporting subtotals at depth #. See example below.
  23.            A space between option letter and the number is not allowed.
  24.     -a     Report also hidden and system files
  25.     -h     Shows help information
  26.  
  27.  
  28. Examples:
  29.  
  30.             du -a \
  31.  
  32.    Will report the total size of all files on default
  33.    disk. Use chkdsk, if you want to see also the size
  34.    taken by the directory structure itself.
  35.  
  36.             du -d2 c:\q* . d:\foo
  37.  
  38.    Will calculate the total size of the files in all
  39.    root directories on drive c: which begin with letter 'q',
  40.    in current directory, and in directory d:\foo.
  41.    Reports only two levels of subdirectories.
  42.  
  43.  
  44. Author:
  45.  
  46.    Please, send bug reports and other comments to
  47.  
  48.    Jussi Puttonen
  49.    Internet: jpp@utu.fi
  50.  
  51.  
  52.